home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 2
/
AACD 2.iso
/
AACD
/
Programming
/
ARexx4Beginners
/
Articles_01-10
/
Example3-1.rexx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
OS/2 REXX Batch file
|
1995-05-17
|
202 b
|
9 lines
/* Example3-1.rexx */
Count = 1
DO FOREVER
SAY 'Hi there - I am your first example ARexx Program - Count =' Count
SAY 'Hold down the CTRL key and press C to stop me.'||'a'x
Count = Count + 1
END